home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / adaptor.zip / ADAPT.ZIP / adaptor / src / include / makestaa.h < prev    next >
C/C++ Source or Header  |  1994-01-03  |  613b  |  26 lines

  1. # ifndef yyMakeStaticArrays
  2. # define yyMakeStaticArrays
  3.  
  4. # if defined __STDC__ | defined __cplusplus
  5. # define ARGS(parameters)    parameters
  6. # else
  7. # define ARGS(parameters)    ()
  8. # endif
  9.  
  10. # ifndef bool
  11. # define bool char
  12. # endif
  13.  
  14. # include "Tree.h"
  15. # include "Definiti.h"
  16.  
  17.  
  18. extern void MakeStatic ARGS((tTree t, tIdent unitname));
  19. extern tTree InsertStaticDecls ARGS((tIdent name, int rank, tTree type, tTree end_decls));
  20. extern tTree MakeInitialStatic ARGS((tIdent name, tTree lb, tTree ub, int overlap));
  21.  
  22. extern void BeginMakeStaticArrays ();
  23. extern void CloseMakeStaticArrays ();
  24.  
  25. # endif
  26.